Q3String_Write
You can use theQ3String_Write
function to write a string to a file object.
TQ3Status Q3String_Write (const char *data, TQ3FileObject file);
data
- A pointer to a string.
file
- A file object.
DESCRIPTION
TheQ3String_Write
function writes the string data pointed to by thedata
parameter to the file object specified by thefile
parameter. The number of bytes written to the file object is equal toQ3Size_Pad(strlen(data)+1)
.